/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #121212;
    color: #fff;
  }
  
  .heading {
    font-size: 2.5rem;
    color: #1DB954; /* Spotify green */
    margin: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  }
  
  /* Playlist container */
  .playlist-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }
  
  /* Song card styling */
  .song-card {
    background-color: #282828;
    width: 250px;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .song-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  }
  
  /* Album cover styling */
  .album-cover {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  /* Song info styling */
  .song-info {
    margin-bottom: 10px;
  }
  
  .song-title {
    font-size: 1.2rem;
    color: #1DB954;
  }
  
  .artist-name {
    font-size: 0.9rem;
    color: #b3b3b3;
  }
  
  /* Audio controls */
  audio {
    width: 100%;
    background-color: #333;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  audio::-webkit-media-controls-panel {
    background-color: #333;
    color: #f0f0f0;
  }
  
  audio::-webkit-media-controls-play-button,
  audio::-webkit-media-controls-timeline,
  audio::-webkit-media-controls-mute-button {
    filter: brightness(1.5);
  }
  
  audio::-webkit-media-controls-play-button:hover,
  audio::-webkit-media-controls-mute-button:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
  }
  